Arrays
An example
Let us consider an array of social security
numbers. Let picture of the disk represents
each of the numbers:
w
<data type>
<array name>
[
<size>
];
w
int SSN[5];
w
SSN[1] = 345;
w
0
0
0
345
0
4
3
2
1
0